home *** CD-ROM | disk | FTP | other *** search
- ` ------------------------------------------------------------------------
- ` Fuzzy Display DarkForge Snippet (20/8/2000)
- ` ------------------------------------------------------------------------
- `
- ` A slightly "different" way to display a picture!
-
- sync rate 0
- sync on
- hide mouse
-
- ` Play with this value for more/less "mess" at the start
-
- s=180
-
- load bitmap "anhk_inside.bmp",1
- create bitmap 2,640,480
-
- set current bitmap 1
- for i=1 to 480
- get image i,0,i-1,640,i
- next i
-
- set text opaque
- ink rgb(255,255,255),0
-
- repeat
-
- set current bitmap 2
-
- for i=1 to 480
- paste image i,rnd(s),i
- next i
-
- ` Uncomment line below to display the FPS
- ` text 0,0,str$(screen fps())
-
- dec s
-
- set current bitmap 0
- copy bitmap 2,0
-
- sync
-
- until s<0
-
- wait key
- end
-
-